home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / Pov / POV302 / MANUAL / DOCSDEMO / LATHDEM1.POV < prev    next >
Encoding:
Text File  |  1997-01-20  |  293 b   |  23 lines

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 10
  5.   location <1, 9, -50>
  6.   look_at <0, 2, 0>        
  7. }
  8.  
  9. light_source {
  10.   <20, 20, -20> color White 
  11. }
  12.  
  13. lathe {
  14.   linear_spline 
  15.   6, 
  16.   <0,0>, <1,1>, <3,2>, <2,3>, <2,4>, <0,4>
  17.   pigment { Blue }
  18.   finish { 
  19.     ambient .3      
  20.     phong .75 
  21.   }
  22. }
  23.